home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib6 / v_08_06 / 8n06073b < prev    next >
Encoding:
Text File  |  1995-11-01  |  309 b   |  16 lines

  1. *****Listing 3*****
  2.  
  3.     show_record()
  4.        {
  5.        int i;
  6.  
  7.        /* Copy in the record to be printed */
  8.        print_record = *record[current_record];
  9.         
  10.        for (i=0; i < NUMBER_FIELDS; i++)
  11.            {
  12.            printf("%s\n", record_field_address[i]);
  13.            }
  14.        }
  15.  
  16.